Article Outline
cyg操作
cd /cygdrive/d #切换到D盘
<!--more-->
Hexo 操作
hexo help # 查看帮助
hexo version #查看Hexo的版本
hexo algolia # 更新search庫
hexo new "postName" #新建文章
hexo new post "title" # 生成新文章:\source\_posts\title.md,可省略post
hexo new page "pageName" #新建页面
hexo clean #清除部署緩存
hexo n == hexo new #新建文章
hexo g == hexo generate #生成静态页面至public目录
hexo s == hexo server #开启预览访问端口(默认端口4000,'ctrl + c'关闭server)
hexo d == hexo deploy #将.deploy目录部署到GitHub
hexo d -g #生成加部署
hexo s -g #生成加预览
*post、page等可以改成其他layout,可用layout在scaffolds目录下查看。在同目录下创建文件来添加自己的layout,也可以编辑现有的layout,比如post的layout默认是\scaffolds\post.md。
部署
每次部署的步骤,可按以下两步来进行:
hexo cl
hexo d -g